@import url('https://fonts.googleapis.com/css2?family=Dangrek&family=Hanuman:wght@100;300;400;700;900&family=Koulen&family=Noto+Sans+Khmer:wght@100..900&display=swap');


:root {
    --swiper-theme-color: #000 !important;
    --primary-color: orange;
    --color-black: black;
    --color-lightgrey: rgb(226, 223, 223);

}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    text-decoration: none;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

body {
    font-family: "Noto Sans Khmer", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Noto Sans Khmer", sans-serif;
    font-weight: 600;
}

a {
    text-decoration: none;
    color: var(--color-black);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.desktop-hide {
    display: none;
}

.mobile-hide {
    display: block;
}

.top-bar {
    background-color: white;
    padding: 5px 0;
    font-size: 14px;
    border-bottom: 1px solid rgb(222, 220, 220);
}

.middle-bar {
    padding: 25px 0;
}

.middle-bar .logo-container img {
    height: 35px;
}

.middle-bar .hotline img {
    height: 40px;
}

.middle-bar .right-side-logo-container {
    display: flex;
    justify-content: space-between;
}


/* Search Bar */

.middle-bar .search-container {
    width: 60%;
}

.middle-bar .search-container .search-form {
    position: relative;
    width: 100%;
}

.middle-bar .search-container .search-form form input {
    border: 1px solid black;
    outline: 0;
    width: 100%;
    border-radius: 30px;
    padding: 10px 140px 10px 35px;
    font-weight: 300;
    font-size: 14px;
    color: rgb(0, 0, 0);
    font-family: "Hanuman", serif;
    font-weight: 500;
    background-color: white;
}

.middle-bar .search-container .search-form form input::placeholder {
    color: rgb(117, 117, 117);
    font-weight: 500;
}

.middle-bar .search-container .search-form button {
    position: absolute;
    top: 0;
    color: #d7cccc;
    padding: 10px 35px;
}

.middle-bar .search-container .search-form button {
    right: 0;
    border: 1px solid black;
    outline: 0;
    font-size: 0.875em;
    font-weight: 600;
    text-transform: uppercase;
    font-family: "Hanuman", serif;
    background-color: #000000;
    color: white;
    border-radius: 0 30px 30px 0;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.navbar {
    background-color: var(--color-black);
    padding: 10px 0;
    position: relative;
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translate3d(0, -100%, 0);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.fadeInDown {
    animation-name: fadeInDown;
}

.navbar.sticky {
    background-color: orange;
    position: fixed;
    top: 0;
    margin: 0 auto;
    width: 100%;
    border-bottom: none;
    background-color: #232323;
    padding: 10px 0 10px 0;
    transition: all 0.2s ease-in-out;
    animation: fadeInDown 0.5s both 0.1s;
    box-shadow: 0px 0px 13px #00000054;
    z-index: 1000;
}

.navbar ul {
    display: flex;
}

.navbar ul li.main-menu-item {
    padding: 0 25px;
    transition: all 0.3s ease-in-out;
}

.navbar ul li.main-menu-item:first-child {
    padding-left: 0;
}

.navbar ul li.main-menu-item a {
    color: white;
    font-weight: 400;
    font-size: 17px;
}


.navbar ul li.main-menu-item ul {
    position: absolute;
    top: 105%;
    padding: 10px;
    background-color: black;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease-in-out;
    z-index: 100;
}

.navbar ul li.main-menu-item ul {
    display: flex;
    flex-direction: column;
}

.navbar ul li.main-menu-item ul li {
    padding: 10px 0;
    border-bottom: 1px solid rgb(50, 50, 50);
}

.navbar ul li.main-menu-item ul li:last-child {
    border-bottom: none;
}

.navbar ul li.main-menu-item:hover ul {
    visibility: visible;
    opacity: 1;
}

.main-section {
    background-color: #f9f5f4;
    padding: 30px 0;
}

.catalog-container {
    background-color: white;
    padding: 10px;
}

.catalog-container a .catalog-item {
    display: flex;
    gap: 10px;
    align-items: center;
    border-bottom: 1px solid var(--color-lightgrey);
    padding-bottom: 8px;
    padding-top: 8px;
}

.catalog-container a .catalog-item .catalog-text {
    font-weight: 600;
    font-size: 16px;
    padding-left: 15px;
}

.catalog-container a:first-child .catalog-item {
    padding-top: 0;
}

.catalog-container a:last-child .catalog-item {
    border-bottom: none;
}

.homepage-main-slider {
    height: auto;
    width: 100%;
    /* min-height: 400px; */

    .swiper {
        width: 100%;
        height: 100%;
    }

    .swiper-slide {
        text-align: center;
        font-size: 18px;
        background: #fff;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .swiper-slide img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .swiper-pagination-bullet {
        width: 30px;
        border-radius: 2px;
        background-color: #00000058;
    }
}

.news-container {
    margin-bottom: 30px;
}

.news-container .newsImage {
    width: 100%;
    height: 150px;
    overflow: hidden;
    border-radius: 5px;
}

.news-container .newsImage img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.news-container .newContent .title {
    padding-top: 20px;
    padding-bottom: 10px;
    font-size: 14px;
    font-weight: 500;
}

.news-container .newContent .date {
    font-size: 13px;
    padding-bottom: 15px;
}

.news-container .newContent .description {
    font-size: 14px;
}

.homepage-main-slider .slider-item {
    align-items: center;
    gap: 30px;
    height: 100%;
}

.homepage-main-slider .slider-item .slider-container {
    text-align: left;
    padding-left: 60px;
}

.homepage-main-slider .slider-item .slider-container .slider-title {
    padding-bottom: 20px;
}

.homepage-main-slider .slider-item .slider-container .slider-description {
    padding-bottom: 20px;
    font-size: 16px;
}

.homepage-main-slider .slider-item .slider-container .button {
    padding: 3px 20px;
    background-color: black;
    color: white;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
}

.homepage-main-slider .slider-item .slider-img img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.whychooseus-section {
    padding: 30px 0;

    .swiper {
        width: 100%;
        height: 100%;
    }

    .swiper-slide {
        text-align: center;
        font-size: 18px;
        background: #fff;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .swiper-slide img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}


.whychooseus-section .whychooseus-item {
    width: 100%;
    background-color: black;
    display: flex;
    padding: 5px 10px;
    align-items: center;
    gap: 10px;
}

.whychooseus-section .whychooseus-item .icon {
    color: white;
    font-size: 30px;
     max-width: 20%;
}

.whychooseus-section .whychooseus-item .content {
    color: white;
}

.whychooseus-section .whychooseus-item .content h3 {
    font-size: 13px;
    text-align: left;
    font-weight: 500;
}

.whychooseus-section .whychooseus-item .content p {
    font-size: 10px;
    text-align: left;
}

.newarrival-section {
    padding: 30px 0;

    .swiper {
        width: 100%;
        height: 100%;
    }

    .swiper-slide {
        text-align: center;
        font-size: 18px;
        background: #fff;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 5px;
        overflow: hidden;
    }

    .swiper-slide img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.bestselling-section {
    padding: 30px 0;

    .swiper {
        width: 100%;
        height: 100%;
    }

    .swiper-slide {
        text-align: center;
        font-size: 18px;
        background: #fff;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 5px;
        overflow: hidden;
    }

    .swiper-slide img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.product-item {
    transition: all 0.3s ease;
    background: white;
    border-radius: 5px;
    overflow: hidden;
    width: 100%;
}

.product-item .image-container {
    overflow: hidden;
    height: 100%;
    position: relative;
}

.product-item .image-container::before {
    content: '';
    position: absolute;
    top: -30px;
    left: -77px;
    width: 20px;
    height: 150%;
    transform: rotate(28deg);
    background-color: rgba(255, 255, 255, 0.448);
    transition: all 0.7s ease-in-out;
}

.product-item .image-container:hover::before {
    left: 140%;
}


.product-item .image-container img {
    width: 100%;
    aspect-ratio: 12 / 9;
    object-fit: cover;
    object-position: center;
}

.product-item .content-container {
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.product-item .content-container .category {
    font-size: 13px;
    font-weight: 400;
}

.product-item .content-container .title {
    font-size: 16px;
    padding-top: 5px;
    padding-bottom: 10px;
}

.product-item .content-container .price-container {
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: center;
}

.product-item .content-container .price-container .discountPrice {
    font-weight: 600;
    font-size: 16px;
    color: red;
}
.product-item .content-container .price-container .nodiscountPrice {
    font-weight: 600;
    font-size: 16px;
    color: black;
}

.product-item .content-container .price-container .originalPrice {
    font-weight: 400;
    font-size: 15px;
    text-decoration-line: line-through;
}

.product-item .content-container .view-btn {
    padding-top: 20px;
    padding-bottom: 10px;
}

.product-item .content-container .view-btn a {
    border: 2px solid black;
    font-size: 13px;
    padding: 5px 20px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.product-item .content-container .view-btn a:hover {
    background-color: black;
    color: white;
}

.homepage-highlight {
    display: flex;
    gap: 20px;
    align-items: end;
}

.homepage-highlight .first-side {
    padding: 20px;
    width: 100%;
    text-align: left;
}

.homepage-highlight .title {
    font-size: 16px;
    padding-bottom: 10px;
}

.homepage-highlight .description {
    font-size: 13px;
}

.homepage-highlight .img-box {
    width: 50%;
}

.homepage-highlight-container {
    .swiper {
        width: 100%;
        height: 100%;
    }

    .swiper-slide {
        text-align: center;
        font-size: 18px;
        background: #fff;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 5px;
        overflow: hidden;
    }

    .swiper-slide img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

footer {
    padding-top: 50px;
    padding-bottom: 30px;
}

footer .footer-img img {
    height: 35px;
}

footer .footer-item h3 {
    font-size: 15px;
    padding-bottom: 20px;
}

footer .footer-item ul {
    display: flex;
    flex-direction: column;
}

footer .footer-item ul li {
    margin-bottom: 7px;
}

footer .footer-item .footer-icon {
    padding-top: 10px;
    display: flex;
    gap: 3px;
}

footer .footer-item .footer-icon .icons {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: black;
    padding: 5px;
    height: 22px;
    width: 22px;
    border-radius: 3px;
}

footer .copyrightfooter {
    font-size: 14px;
}

.topProductListPage {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    padding-bottom: 45px;
    padding-top: 30px;
}


.topProductListPage .filterMobileContainer .filterMobileAside {
    position: absolute;
    background-color: white;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 100;
    padding: 15px;
    border-radius: 10px;
    transform: translateX(110%);
    transition: 500ms cubic-bezier(0.77, 0, 0.175, 1);


}

.filter-container {
    background-color: white;
    padding: 20px;
    border-radius: 5px;
}

.filter-container form h3 {
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    padding-bottom: 10px;
    padding-top: 20px;
}

.filter-container form input[type="checkbox"] {
    accent-color: black;
}

/* .filter-container form input[type="checkbox"]:checked {
    accent-color: orange;
} */

.filter-container form label {
    padding: 5px 10px;
    display: inline-block;
}

.filter-container .submitButton {
    margin-top: 20px;
    background-color: rgb(0, 0, 0);
    padding: 5px 20px;
    width: 100%;
    border: 1px solid black;
    border-radius: 5px;
    font-size: 14px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.3s ease;
    font-family: "Noto Sans Khmer", sans-serif;
}

.filter-container .submitButton:hover {
    background-color: transparent;
    color: black;
}

.priceRangeContainer {
    .price-input {
        width: 100%;
        display: flex;
        padding-bottom: 20px;
    }

    .price-input .field {
        display: flex;
        width: 100%;
        height: 100%;
        align-items: center;
    }

    .field input {
        width: 100%;
        height: 100%;
        outline: none;
        font-size: 19px;
        margin-left: 12px;
        border-radius: 5px;
        text-align: center;
        border: 1px solid #000000;
        -moz-appearance: textfield;
    }

    input[type="number"]::-webkit-outer-spin-button,
    input[type="number"]::-webkit-inner-spin-button {
        -webkit-appearance: none;
    }

    .price-input .separator {
        width: 130px;
        display: flex;
        font-size: 14px;
        align-items: center;
        justify-content: center;
    }

    .price-input .field span {
        font-size: 13px;
        text-transform: uppercase;
    }

    .price-input .field input {
        font-size: 14px;
        border-radius: 5px;
        font-weight: 500;
        border: 1px solid lightblue;
    }

    .slider {
        height: 3px;

        position: relative;
        background: #9f9999;
        border-radius: 0;
        margin-top: 10px;
    }

    .slider .progress {
        height: 100%;
        /* left: 25%;
        right: 25%; */
        position: absolute;
        border-radius: 0;
        background: #000000;

    }

    .range-input {
        position: relative;
        margin-bottom: 20px;
    }

    .range-input input {
        position: absolute;
        width: 100%;
        height: 5px;
        top: -5px;
        background: none;
        pointer-events: none;
        -webkit-appearance: none;
        -moz-appearance: none;
    }

    input[type="range"]::-webkit-slider-thumb {
        height: 10px;
        width: 20px;
        /* border-radius: 50%; */
        background: #000000;
        pointer-events: auto;
        -webkit-appearance: none;
        box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
    }

    input[type="range"]::-moz-range-thumb {
        height: 17px;
        width: 17px;
        border: none;
        border-radius: 50%;
        background: #17a2b8;
        pointer-events: auto;
        -moz-appearance: none;
        box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
    }
}

.afterPriceRange {
    .price-input {
        width: 100%;
        display: flex;
        padding-bottom: 20px;
    }

    .price-input .field {
        display: flex;
        width: 100%;
        height: 100%;
        align-items: center;
    }

    .field input {
        width: 100%;
        height: 100%;
        outline: none;
        font-size: 19px;
        margin-left: 12px;
        border-radius: 5px;
        text-align: center;
        border: 1px solid #000000;
        -moz-appearance: textfield;
    }

    input[type="number"]::-webkit-outer-spin-button,
    input[type="number"]::-webkit-inner-spin-button {
        -webkit-appearance: none;
    }

    .price-input .separator {
        width: 130px;
        display: flex;
        font-size: 14px;
        align-items: center;
        justify-content: center;
    }

    .price-input .field span {
        font-size: 13px;
        text-transform: uppercase;
    }

    .price-input .field input {
        font-size: 14px;
        border-radius: 5px;
        font-weight: 500;
        border: 1px solid lightblue;
    }

    .slider {
        height: 3px;
        position: relative;
        background: #9f9999;
        border-radius: 0;
        margin-top: 20px;
    }

    .slider .progress {
        height: 100%;
        left: 25%;
        right: 25%;
        position: absolute;
        border-radius: 0;
        background: #000000;

    }

    .range-input {
        position: relative;
        margin-bottom: 20px;
    }

    .range-input input {
        position: absolute;
        width: 100%;
        height: 5px;
        top: -5px;
        background: none;
        pointer-events: none;
        -webkit-appearance: none;
        -moz-appearance: none;
    }

    input[type="range"]::-webkit-slider-thumb {
        height: 20px;
        width: 30px;
        /* border-radius: 50%; */
        background: #000000;
        pointer-events: auto;
        -webkit-appearance: none;
        box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
    }

    input[type="range"]::-moz-range-thumb {
        height: 17px;
        width: 17px;
        border: none;
        border-radius: 50%;
        background: #17a2b8;
        pointer-events: auto;
        -moz-appearance: none;
        box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
    }
}

.filterMobileAside .filterContentList form .submitButton {
    margin-top: 20px;
    background-color: rgb(0, 0, 0);
    padding: 5px 20px;
    width: 100%;
    border: 1px solid black;
    border-radius: 5px;
    font-size: 14px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.3s ease;
    font-family: "Noto Sans Khmer", sans-serif;
}

.filterMobileAside .filterContentList form .submitButton:hover {
    background-color: transparent;
    color: black;
}

.filterMobileAside .filterContentList form h3 {
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    padding-bottom: 3px;
    padding-top: 10px;
}


.filterMobileAside .filterContentList form input[type="checkbox"] {
    accent-color: black;
}

.filterMobileAside .filterContentList form label {
    padding: 0px 10px;
    display: inline-block;
}

.filterMobileAside .closeIcon {
    text-align: right;
}

.product-image-slider-box {
    .swiper {
        width: 100%;
        height: 200px;
        margin-left: auto;
        margin-right: auto;
    }

    .swiper-slide {
        background-size: cover;
        background-position: center;
    }

    .productImageSwiperMain {
        height: 100%;
        width: 100%;
        border-radius: 0;
    }

    .mySwiper {
        height: 100%;
        box-sizing: border-box;
        padding: 10px 0;
    }

    .mySwiper .swiper-slide {
        width: 25%;
        height: 100%;
        opacity: 0.4;
    }

    .mySwiper .swiper-slide-thumb-active {
        opacity: 1;
    }

    .swiper-slide img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.productDetailsContainer {
    .priceDetail {
        display: flex;
        gap: 10px;
        align-items: center;
        padding-bottom: 15px;

        .originalPrice {
            font-size: 20px;
            text-decoration-line: line-through;
        }

        .discountPrice {
            font-size: 20px;
            color: red;
        }
    }

    .colorOptions {
        display: flex;
        gap: 20px;
        align-items: center;
        padding-bottom: 20px;

        .colorText {
            font-weight: 600;
        }

        .colorChoices {
            display: flex;
            gap: 10px;
            align-items: center;

            #circle1,
            #circle2,
            #circle3,
            #circle4,
            #circle5 {
                width: 20px;
                height: 20px;
                border-radius: 25px;
                box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
                cursor: pointer;
            }
        }

        #color1:checked~.colorChoices label #circle1,
        #color2:checked~.colorChoices label #circle2,
        #color3:checked~.colorChoices label #circle3,
        #color4:checked~.colorChoices label #circle4,
        #color5:checked~.colorChoices label #circle5 {
            border: 1px solid black;
        }


    }

    form input[type="radio"] {
        display: none;
    }

    .submitButton {
        background-color: black;
        padding: 10px 30px;
        font-weight: 500;
        font-family: "Montserrat", sans-serif;
        font-size: 18px;
        color: white;
        border: 2px solid black;
        text-transform: uppercase;
    }


}


.productDetailsContainer .product-short-description-table {
    padding-bottom: 30px;
    padding-top: 30px;
}

.productDetailsContainer .product-short-description-table table {
    width: 100%;
    border-collapse: collapse;
}

.productDetailsContainer .product-short-description-table table tbody tr {
    width: 100%;
    /* border-bottom: 1px solid lightgray; */
    font-size: 16px;
    color: rgb(56, 56, 56);
    vertical-align: baseline;
}

.productDetailsContainer .product-short-description-table table tbody tr td {
    padding-bottom: 10px;
}


.productDetailsContainer .product-short-description-table table tbody tr td p::after {
    content: ',';
}

.productDetailsContainer .product-short-description-table table tbody tr td p:last-child:after {
    content: '';
}

.productDetailsContainer .product-short-description-table table tbody tr td:first-child {
    font-weight: 600;
    min-width: 100px;
}

.product-main-content .similiar-product {
    padding-top: 35px;
    padding-bottom: 20px;
}

.similiar-product-slider {
    .swiper {
        width: 100%;
        height: 100%;
        border-radius: 0;
    }

    .swiper-slide {
        text-align: center;
        font-size: 18px;
        background: #fff;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .swiper-slide img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.promotionTopSlider {
    height: 100%;
    width: 100%;
    padding-top: 20px;

    .swiper {
        width: 100%;
        height: 100%;
    }

    .swiper-slide {
        text-align: center;
        font-size: 18px;
        background: #fff;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .swiper-slide img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .swiper-pagination-bullet {
        width: 30px;
        border-radius: 2px;
        background-color: #00000058;
    }
}


.aboutUsFirstSection {
    position: relative;
}

.aboutUsFirstSection .miniText {
    position: absolute;
    bottom: 0;
    width: 50%;
    right: 0;
}

.aboutUsFirstSection .mainText .hea1 {
    font-size: 30px;
}

.aboutUsFirstSection .mainText .hea2 {
    font-size: 43px;
    padding-bottom: 20px;
}

.aboutUsFirstImageContainer {
    display: flex;
    flex-wrap: nowrap;
    gap: 20px;
    width: 100%;
    height: 100%;
    padding-top: 30px;
    padding-bottom: 30px;
}

.aboutUsFirstImageContainer .image1 {
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
}

.aboutUsFirstImageContainer .image2 {
    width: 50%;
    border-radius: 15px;
    overflow: hidden;
}

.aboutUsStorySection .storyText {
    font-size: 15px;
}

.aboutUsStorySection .storyImage {
    display: flex;
    align-items: center;
    justify-content: center;
}

.aboutUsStorySection .storyImage img {
    width: 40%;
}

.aboutUsVisionSection {
    padding-top: 30px;
    padding-bottom: 75px;
}

.aboutUsVisionSection .mission img {
    width: 40%;
    margin-left: -10px;
    padding-bottom: 20px;
}

.socialIconContact {
    padding-top: 20px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.socialIconContact i {
    font-size: 14px;
    background-color: rgb(0, 0, 0);
    padding: 10px;
    border-radius: 3px;
    width: 30px;
    color: white;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-page-contact-form {
    width: 60%;
    padding-top: 20px;
    padding-bottom: 30px;
}

.contact-page-contact-form form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-page-contact-form form input {
    border-radius: 30px;
    padding: 5px 20px;
    border: 1px solid lightblue;
    font-family: "Montserrat", serif;
}

.contact-page-contact-form form input::placeholder {
    font-family: "Hanuman", serif;
}

.contact-page-contact-form form textarea {
    border-radius: 10px;
    padding: 10px 20px;
    border: 1px solid lightblue;
    font-family: "Hanuman", serif;
    height: 200px;
}

.contact-page-contact-form form textarea::placeholder {
    font-family: "Hanuman", serif;
}

.contact-page-contact-form form button {
    border-radius: 30px;
    padding: 5px 20px;
    border: 2px solid black;
    background-color: black;
    color: white;
    font-size: 16px;
    font-family: "Noto Sans Khmer", sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.contact-page-contact-form form button:hover {
    background-color: white;
    color: black;
}

.googleMapContact {
    border-radius: 10px;
    overflow: hidden;
}

.container.mainNewsContainer {
    display: flex;
    flex-wrap: nowrap;
}

.container.mainNewsContainer .newImage {
    width: 100%;
}

.container.mainNewsContainer .newsContent {
    width: 100%;
}

.pagination-custom {
    margin-top: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.pagination-custom .page-numbers {
    background-color: black;
    padding: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    border-radius: 3px;
    font-weight: 600;
}

.pagination-custom .page-numbers.current {
    background-color: #979797;
}

#quick-view-modal {
    position: fixed;
    width: 100%;
    height: 100vh;
    z-index: 2000;
    display: none;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.75);
    padding: 30px 0;
}

#quick-view-modal .quick-view-content {
    width: 40%;
    margin: 0 auto;
    background-color: white;
    position: relative;
}

#quick-view-modal .quick-view-content .close-quick-view {
    position: absolute;
    top: -20px;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    right: -20px;
    background-color: rgb(0, 0, 0);
    padding: 5px;
    border-radius: 50%;
    cursor: pointer;
    color: white;
    font-size: 30px;
    font-weight: 600;
    transition: all 0.2s ease-in-out;
}

#quick-view-modal .quick-view-content .close-quick-view:hover {
    background-color: white;
    color: black;
}

.quick-view-container {
    padding: 20px;
}

.phonenumberQuickView {
    padding-bottom: 20px;
}



.phonenumberQuickView form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.phonenumberQuickView form input {
    border-radius: 30px;
    padding: 5px 20px;
    border: 1px solid lightblue;
    font-family: "Montserrat", serif;
}

.phonenumberQuickView form input::placeholder {
    font-family: "Hanuman", serif;
}

.phonenumberQuickView form textarea {
    border-radius: 10px;
    padding: 10px 20px;
    border: 1px solid lightblue;
    font-family: "Hanuman", serif;
    height: 200px;
}

.phonenumberQuickView form textarea::placeholder {
    font-family: "Hanuman", serif;
}

.phonenumberQuickView form button {
    border-radius: 30px;
    padding: 5px 20px;
    border: 1px solid black;
    background-color: black;
    color: white;
    font-size: 16px;
    font-family: "Hanuman", serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.phonenumberQuickView form button:hover {
    background-color: white;
    color: black;
}

button.quick-view {
    background-color: black;
    padding: 10px 40px;
    border: 1px solid black;
}

button.quick-view a {
    color: white;
    font-weight: 600;
    font-size: 16px;
    font-family: "Noto Sans Khmer", sans-serif;
}

.newDetailContainer {
    border-radius: 10px;
}

.newDetailContainer .imageContainer {
    padding-bottom: 30px;
}

.generalGetContentContainer {

    h1,
    h2,
    h3,
    h4,
    h5 {
        margin-bottom: 20px;
    }

    p {
        margin-bottom: 15px;
    }

    img {
        width: 100%;
        height: auto;
    }
}

.navbar .navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.testingmenu ul li{
    width: 100%;
}
.testingmenu ul li a{
    border-bottom: 1px solid var(--color-lightgrey);
    display: block;
    padding-top: 5px;
    padding-bottom: 5px;
}

.testingmenu ul li ul li a{
    padding-left: 15px;
}

.testingmenu ul li:last-child ul li a{
    border-bottom: none;
}

.subtesting {
    margin-left: 20px;
    display: flex;
    align-items: baseline;
}

.wordpressContentContainer {
    p {
        padding-bottom: 10px;
    }
}


@media only screen and (max-width: 600px) {
    .desktop-hide {
        display: block;
    }

    .container {
        padding: 0 15px;
    }

    .mobile-hide {
        display: none;
    }

    .middle-bar .right-side-logo-container {
        display: none;
    }

    .middle-bar .logo-container {
        text-align: center;
    }

    .middle-bar {
        padding: 15px 0;
    }

    .aside {
        position: fixed;
        width: 100%;
        background-color: rgb(0, 0, 0);
        height: 100%;
        z-index: 2000;
        transform: translateX(-100%);
        transition: 500ms cubic-bezier(0.77, 0, 0.175, 1);
    }

    .aside-right {
        position: fixed;
        width: 100%;
        background-color: rgb(251, 249, 249);
        height: 100%;
        z-index: 2001;
        transform: translateX(100%);
        transition: 500ms cubic-bezier(0.77, 0, 0.175, 1);
    }

    .navbar ul {
        display: none;
    }

    .navbar .navbar-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }




    .navbar .navbar-container .search-container {
        width: 100%;
    }

    .navbar .navbar-container .search-container .search-form {
        position: relative;
        width: 100%;
    }

    .navbar .navbar-container .search-container .search-form form input {
        border: 1px solid black;
        outline: 0;
        width: 100%;
        border-radius: 5px;
        padding: 5px 40px 3px 10px;
        font-weight: 300;
        font-size: 14px;
        color: rgb(255, 255, 255);
        font-family: "Hanuman", serif;
        font-weight: 500;
        background-color: #2e2c2d;
    }

    .navbar .navbar-container .search-container .search-form form input::placeholder {
        color: rgb(207, 203, 203);
        font-weight: 500;
    }

    .navbar .navbar-container .search-container .search-form button {
        position: absolute;
        top: 0;
        color: #d7cccc;
        padding: 5px 15px;
    }

    .navbar .navbar-container .search-container .search-form button {
        right: 0;
        border: 1px solid black;
        outline: 0;
        font-size: 0.875em;
        font-weight: 600;
        text-transform: uppercase;
        font-family: "Montserrat", serif;
        background-color: #5c5656;
        color: white;
        border-radius: 0 5px 5px 0;
        cursor: pointer;
        transition: all 0.3s ease-in-out;
    }

    .aside .navbar-container ul {
        padding: 20px;
    }

    .aside .navbar-container ul li {
        padding: 15px 0;
        border-bottom: 1px solid rgb(47, 46, 46);
    }

    .aside .navbar-container ul li a {
        display: flex;
        justify-content: space-between;
        align-items: center;
        color: white;
        font-weight: 400;
        font-size: 20px;
    }

    .aside .navbar-container ul li ul {
        display: none;
    }

    .aside .navbar-container ul li:hover {
        padding-bottom: 0px;
    }

    .aside .navbar-container ul li:hover ul {
        display: block;
        padding: 10px;
    }

    .aside .navbar-container ul li:hover ul li {
        border-bottom: none;
    }

    .aside .navbar-container ul li:hover ul li a {
        font-size: 14px;
    }

    .aside .closeIcon {
        padding: 20px;
        display: flex;
        justify-content: end;
    }

    .aside-right .catalog-container {
        padding: 20px;
        background-color: transparent;
        overflow: scroll;
        height: 80vh;
    }

    .aside-right .catalog-container ul {
        display: flex;
        flex-direction: column;

    }

    .aside-right .catalog-container ul li {
        /* padding: 10px 0;
        border-bottom: 1px solid rgb(232, 230, 230); */
        font-weight: 500;
    }

    .testingmenu ul li a {
        padding-top: 8px;
        padding-bottom: 8px;
    }
    .testingmenu ul li:last-child ul li a{
        border-bottom: 1px solid var(--color-lightgrey);
    }

    .aside-right .catalog-container ul li ul {
        padding-left: 10px;
    }

    .products-page-section {
        padding-top: 10px;
    }

    .aside-right .catalog-container ul li ul li {
        padding: 0px 0;
    }

    .aside-right .catalog-container ul li ul li:first-child {
        padding-top: 0;
    }

    .aside-right .catalog-container ul li ul li:last-child {
        padding-bottom: 0;
        border-bottom: none;
    }

    .main-section {
        padding-top: 0;

        .first-homepage-section {
            padding-top: 15px;
        }
    }

    .homepage-main-slider .slider-item .slider-container {
        padding: 50px 20px 20px 20px
    }

    .homepage-main-slider .slider-item .slider-container .slider-title {
        font-size: 22px;
    }

    .homepage-main-slider .slider-item .slider-container .slider-description {
        font-size: 14px;
    }

    .homepage-main-slider .slider-item .slider-container .button {
        font-size: 12px;
    }

    .homepage-main-slider .slider-item .slider-img img {
        margin-left: 50px;
    }

    .whychooseus-section {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .homepage-highlight-container {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    footer .footer-img {
        padding-top: 0;
        padding-bottom: 40px;
    }

    footer .footer-item h3 {
        padding-top: 10px;
    }

    footer .copyrightfooter {
        padding-top: 40px;
    }

    .aboutUsFirstSection .miniText {
        position: relative;
        width: 100%;
    }

    .aboutUsFirstSection .miniText p {
        font-size: 14px !important;
    }

    .aboutUsFirstSection .mainText .hea1 {
        font-size: 16px;
    }

    .aboutUsFirstSection .mainText .hea2 {
        font-size: 30px;
        padding-bottom: 20px;
    }

    .aboutUsFirstImageContainer {

        gap: 10px;

    }

    .aboutUsStorySection .storyText {
        font-size: 15px;
    }

    .aboutUsStorySection .storyImage img {
        width: 100%;
    }

    .contact-page-contact-form {
        width: 100%;
    }

    .container.mainNewsContainer {
        flex-wrap: wrap;
    }

    .container.mainNewsContainer .newImage {
        padding-top: 30px;
    }

    #quick-view-modal .quick-view-content {
        width: 90%;
        margin: 0 auto;
        background-color: white;
        position: relative;
    }

    .news-container .newsImage {
        height: 100px;
    }

    footer .footer-item ul li a svg {
        height: 15px;
    }
}

.filter-items-list #gsearch,
.filter-items-list #gsearchM {
    width: 100%;
}